home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 019a / opbgd113.zip / IDE.PAS < prev    next >
Pascal/Delphi Source File  |  1991-10-21  |  184b  |  16 lines

  1. {$A+,F+,O+,R-,S-,V-}
  2. {$M 16384,16384,$A0000}
  3.  
  4. program IDE;
  5.  
  6. uses
  7.   ExecAccess,
  8.   IDEMain,
  9.   OpExec;
  10.  
  11. begin
  12.   ExecAccess.ExecDosSwap := OpExec.ExecDosSwap;
  13.   Main;
  14. end.
  15.  
  16.